[This topic is pre-release documentation and is subject to change in future releases. Blank topics are included as placeholders.]
Enumerates all of the items in the list, in order. The item at index 0
is enumerated first, then the item at index 1, and so on.
Namespace: Wintellect.PowerCollections
Assembly:
PowerCollections (in PowerCollections.dll)
Syntax
Visual Basic (Declaration) |
---|
Public Overrides Function GetEnumerator As IEnumerator(Of T) |
Visual C++ |
---|
public:
virtual IEnumerator<T>^ GetEnumerator () override |
Return Value
An IEnumerator<T> that enumerates all the
items in the list.
See Also